home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir34 / thindi.zip / THISRC.ZIP / STATBAR.H < prev    next >
C/C++ Source or Header  |  1994-01-19  |  823b  |  30 lines

  1. //===========================================================
  2. // Statbar.h - Include file for status bar lib file
  3. //
  4. // Copyright 1994 Douglas Boling
  5. //===========================================================
  6.  
  7. #define IDD_STATBAR            10000
  8. #define IDM_SYSMENUACTIVE      10001
  9. #define MENUTEXT               1000
  10.  
  11.  
  12. //Needed for Win 3.0 compile.
  13. #ifndef COLOR_BTNHIGHLIGHT
  14. #define COLOR_BTNHIGHLIGHT     4
  15. #endif
  16.  
  17.  
  18. LONG CALLBACK ClientSCProc(HWND, UINT, UINT, LONG);
  19. LONG CALLBACK StatBarWinProc(HWND, UINT, UINT, LONG);
  20. //
  21. //Public procedure declarations
  22. //
  23. INT StatusBarInit(HANDLE);
  24. INT StatusBarCreate (HWND, INT, INT *);
  25. INT ModifyClientRect (HWND, RECT *);
  26. INT SetStatusBarText (HWND, char *, INT);
  27. INT SetStatusBarLong (HWND, char *, LONG, INT);
  28. INT GetStatusBarHeight (void);
  29.  
  30.